home *** CD-ROM | disk | FTP | other *** search
/ 2,000 Greater & Lesser Mysteries / 2,000 Greater and Lesser Mysteries.iso / biorythm / instbioe.bat < prev    next >
Encoding:
DOS Batch File  |  1994-06-10  |  1.1 KB  |  45 lines

  1. @echo off
  2. cls
  3. :---This BAT file is called by INSTALLE, but may run independently
  4. :--- %1 is drive FROM, %2 is drive TO, %3 er directory
  5. if "%1" == "" goto syntaks
  6. if "%2" == "" goto syntaks
  7. if "%3" == "" goto syntaks
  8. %2:
  9. cd \
  10. md %3
  11. cd %3
  12. echo.
  13. echo Biorhythm program will be installed:
  14. echo ------------------------------------
  15. echo from drive %1: to drive %2:\%3
  16. echo Press a key to start installation - or Ctrl-C to stop.
  17. pause > nul
  18. echo.
  19. echo Installing - please wait ...
  20. echo ----------------------------
  21. %1:bio410e -o
  22. echo.
  23. echo Copying other files ...
  24. copy %1:regnr.txt
  25. :-copy %1:files.txt
  26. cls
  27. echo.
  28. echo Installation of Biorhythm program is finished!
  29. echo.
  30. echo Write  BIO  and press  Enter  to start the program.
  31. echo        ===             -----
  32. goto end
  33.  
  34. :syntaks
  35. echo To install the Biorhythm program, type: INSTALL and press Enter
  36. echo                                         =======
  37. echo.
  38. echo - OR write:
  39. echo.
  40. echo INSTBIOe (from drive)  (to drive)  (directory)
  41. echo E.g.: INSTBIOe A C BIO4
  42. echo NB: No colons after drive name  (A, C etc.). - No \.
  43.  
  44. :end
  45.